home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Linux Cubed Series 8: LINUX Games
/
Linux Cubed Series 8 - LINUX Games.iso
/
games
/
video
/
fly8111-.000
/
fly8111-
/
fly8
/
MSDOS
/
makeb3.uti
< prev
next >
Wrap
Text File
|
1979-12-31
|
580b
|
33 lines
# makefile
#
# This is part of the flight simulator 'fly8'.
# Author: Eyal Lebedinsky (eyal@ise.canberra.edu.au).
#
#
# make the utilities for msdos, Borland c3
#
CFLAGS= -I..\$(SYSTEM) -I.. $(XFLAGS)
LFLAGS= # -link /ST:4000 /PACKCODE /F
HFILES= ..\keydef.h ..\keymap.h ..\keyname.h
all: mac2max.exe max2mac.exe
mac2max.obj max2mac.obj: $(HFILES)
mac2max.exe: mac2max.obj
$(CC) $(CFLAGS) mac2max.obj $(LFLAGS)
lzexe mac2max
del mac2max.old
max2mac.exe: max2mac.obj
$(CC) $(CFLAGS) max2mac.obj $(LFLAGS)
lzexe max2mac
del max2mac.old
clean:
-del *.obj
-del *.exe